home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 128
/
Vol 128 (Damaged).iso
/
games
/
scooby_d.swf
/
scripts
/
__Packages
/
com
/
ndimedia
/
math
/
geom
/
Rect.as
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-03-26
|
289 b
|
19 lines
class com.ndimedia.math.geom.Rect
{
var _width;
var _height;
function Rect(w, h)
{
this._width = w;
this._height = h;
}
function get width()
{
return this._width;
}
function get height()
{
return this._height;
}
}